crypto/tls.Conn.isHandshakeComplete (field)
17 uses
crypto/tls (current package)
conn.go#L37: isHandshakeComplete atomic.Bool
conn.go#L612: handshakeComplete := c.isHandshakeComplete.Load()
conn.go#L1204: if !c.isHandshakeComplete.Load() {
conn.go#L1274: c.isHandshakeComplete.Store(false)
conn.go#L1422: if c.isHandshakeComplete.Load() {
conn.go#L1440: if !c.isHandshakeComplete.Load() {
conn.go#L1499: if c.isHandshakeComplete.Load() {
conn.go#L1545: if c.isHandshakeComplete.Load() {
conn.go#L1561: if c.handshakeErr == nil && !c.isHandshakeComplete.Load() {
conn.go#L1564: if c.handshakeErr != nil && c.isHandshakeComplete.Load() {
conn.go#L1604: state.HandshakeComplete = c.isHandshakeComplete.Load()
conn.go#L1648: if !c.isHandshakeComplete.Load() {
handshake_client.go#L518: c.isHandshakeComplete.Store(true)
handshake_client_tls13.go#L112: c.isHandshakeComplete.Store(true)
handshake_server.go#L126: c.isHandshakeComplete.Store(true)
handshake_server_tls13.go#L85: c.isHandshakeComplete.Store(true)
quic.go#L265: if !c.isHandshakeComplete.Load() {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |